python check if a file is empty

31

python check if file has content -

>>> import os
>>> os.stat("file").st_size == 0
True

Comments

Submit
0 Comments